home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / libntfs-3g54 / README < prev    next >
Text File  |  2009-02-28  |  2KB  |  64 lines

  1.  
  2. INTRODUCTION
  3. ============
  4.  
  5. The NTFS-3G driver is an open source, freely available read/write NTFS driver 
  6. for Linux, FreeBSD, Mac OS X, NetBSD, Solaris and Haiku. It provides safe and 
  7. fast handling of the Windows XP, Windows Server 2003, Windows 2000, Windows 
  8. Vista, and Windows Server 2008 file systems. 
  9.  
  10. The purpose of the project is to develop, continuously quality test and
  11. support a trustable, featureful and high performance solution for hardware
  12. platforms and operating systems whose users need to reliably interoperate
  13. with NTFS. Besides this practical goal, the project also aims to explore
  14. the limits of the hybrid, kernel/user space filesystem driver approach,
  15. performance, reliability and feature richness per invested effort wise.
  16.  
  17. The driver is in STABLE status. The test methods, the test suites used
  18. can be found at
  19.  
  20.     http://ntfs-3g.org/quality.html
  21.  
  22. News, support answers, problem submission instructions, support and discussion 
  23. forums, performance numbers and other information are available on the project 
  24. web site at
  25.  
  26.     http://ntfs-3g.org
  27.  
  28.  
  29. QUICK INSTALLATION
  30. ==================
  31.  
  32. Linux: Make sure you have the basic development tools and the kernel includes 
  33. the FUSE kernel module. Then type:  
  34.  
  35.     ./configure
  36.     make
  37.     make install      # or 'sudo make install' if you aren't root.
  38.  
  39. Please note that NTFS-3G doesn't require the FUSE user space package anymore.
  40.  
  41. Non-Linux: Please see the NTFS-3G web page for OS specific installation and 
  42. source packages.
  43.  
  44.  
  45. USAGE
  46. =====
  47.  
  48. If there was no error during installation then the NTFS volume can be
  49. read-write mounted for everybody the following way as the root user 
  50. (unmount the volume if it was already mounted, and replace /dev/sda1 
  51. and /mnt/windows, if needed):
  52.  
  53.     mount -t ntfs-3g /dev/sda1 /mnt/windows
  54. or
  55.     ntfs-3g /dev/sda1 /mnt/windows
  56.  
  57. Please see the ntfs-3g manual page for more options and examples.
  58.  
  59. You can also make NTFS to be mounted during boot by putting the below 
  60. line at the __END__ of the /etc/fstab file:
  61.  
  62.     /dev/sda1 /mnt/windows ntfs-3g defaults 0 0
  63.  
  64.